﻿@charset "utf-8";

#ArticleContent_body img{
	margin: auto;
	max-width: 100%;
	display: block;
}


.blue {
	padding:0px;
	margin:0px;
	font-size:14px;
	line-height: 25px;
	color:#4c4c4c;
	text-align: left;
}
.blue .main_box{
	width:100%;
	margin:0px auto;
	padding:0px;
	}
.blue .neirong, .blue #head{
	margin:0px;
	padding:0px;
	border:none;
}
.blue #globalHeader{
	width:100%;
	padding:0px;
	border:none;
	margin:0px auto;
	height:auto;
}

.blue .globalHeader_top{ background:#4273ee; height:30px; }
.blue .top_l{ float:left; line-height:30px; color:#fff;}
.blue .top_r{ float:right; line-height:30px; color:#fff;}

.blue .w100{
	width:1200px;
	padding:0px;
	margin:0px auto;
	border:none;
}
.blue #globalHeader_ad {
	width:100%;
	height:500px;
	padding:0px;
	margin:0px auto;
	border:none;
}
#full-screen-slider { width:100%; height:500px; float:left; position:relative; }
#slides { display:block; width:100%; height:500px; list-style:none; padding:0; margin:0; position:relative}
#slides li { display:block; width:100%; height:100%; list-style:none; padding:0; margin:0; position:absolute}
#slides li a { display:block; width:100%; height:100%; text-indent:-9999px}
#pagination { display:block; list-style:none; position:absolute; left:47%; top:470px; z-index:9900;  padding:5px 15px 5px 0; margin:0}
#pagination li { display:block; list-style:none; width:10px; height:10px; float:left; margin-left:15px; border-radius:5px; background:#FFF }
#pagination li a { display:block; width:100%; height:100%; padding:0; margin:0;  text-indent:-9999px;}
#pagination li.current { background:#4273ee}

.blue .banner_d{ width:100%; height:90px; background:#4273ee}
.blue .call{ width:350px; height:56px; margin-top:20px; float:left; font-size:14px; color:#fff; line-height:160%; background:url(../images/call.png) no-repeat left center;}
.blue .call p{ margin-left:60px;}
.blue .call span{ font-size:18px;}
.blue .add{ width:450px; height:56px; margin-top:20px; float:left; font-size:14px; color:#fff; line-height:160%; background:url(../images/add.png) no-repeat left center;}
.blue .add p{ margin-left:60px;}
.blue .add span{ }


/* 文字移动效果 */
	

/*定义一个名字为lefteaseinAnimate动画，实现从页面的左边淡入页面效果*/
@keyframes lefteaseinAnimate{
    0%{ transform: translateX(-300px); opacity: 0;}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    100%{ transform: translateX(0px); opacity: 1;}         /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}
@-webkit-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-o-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-ms-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-moz-keyframes lefteaseinAnimate{
    0%{ -webkit-transform: translateX(-300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
.blue .left_logo00{
    animation: lefteaseinAnimate 1s ease 1;    /*调用已定义好的动画lefteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
    -webkit-animation: lefteaseinAnimate 1s ease 1;
    -ms-animation: lefteaseinAnimate 1s ease 1;
    -o-animation: lefteaseinAnimate 1s ease 1;
    -moz-animation: lefteaseinAnimate 1s ease 1;
    
    /*规定动画的最后状态为结束状态*/
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode: forwards;  
      -o-animation-fill-mode: forwards; 
      -ms-animation-fill-mode: forwards;   
      -moz-animation-fill-mode: forwards; 
}

/*定义一个名字为righteaseinAnimate动画，实现从页面的左边淡入页面效果*/
@keyframes righteaseinAnimate{
    0%{ transform: translateX(300px); opacity: 0;}   /*在0%时设置文字在想X轴-2000px位移处（左边），透明度为0，也就是看不见文字*/
    100%{ transform: translateX(0px); opacity: 1;}         /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}
@-webkit-keyframes righteaseinAnimate{
    0%{ -webkit-transform: translateX(300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-o-keyframes righteaseinAnimate{
    0%{ -webkit-transform: translateX(300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-ms-keyframes righteaseinAnimate{
    0%{ -webkit-transform: translateX(300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
@-moz-keyframes righteaseinAnimate{
    0%{ -webkit-transform: translateX(300px); opacity: 0;}
    100%{ -webkit-transform: translateX(0px); opacity: 1;}    
}
.blue  .right_tel00, .blue .news_c{
    animation: righteaseinAnimate 2s ease 1;    /*调用已定义好的动画lefteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
    -webkit-animation: righteaseinAnimate 2s ease 1;
    -ms-animation: righteaseinAnimate 2s ease 1;
    -o-animation: righteaseinAnimate 2s ease 1;
    -moz-animation: righteaseinAnimate 2s ease 1;
    
    /*规定动画的最后状态为结束状态*/
    animation-fill-mode:forwards;
    -webkit-animation-fill-mode: forwards;  
      -o-animation-fill-mode: forwards; 
      -ms-animation-fill-mode: forwards;   
      -moz-animation-fill-mode: forwards; 
}


.blue .main div{
	overflow:hidden;
}
.blue .main {
	width:1200px;
	padding:0px;
	margin:30px auto 0px auto;
	border:none;
}


/* 搜索 */
.blue .search_box{
	width:380px;
	height:90px;
	float:right;
	overflow:hidden;
}
.blue .search_box p{
	padding:0px;
	float:left;
	margin:0px;
	border:none;
	font-size: 14px;
	color: #fff;
	text-align:left;
	padding-top:2px;
}
.blue .search{
	width:360px;
	height:36px;
	padding:0px;
	float:left;
	margin:0px;
	background:#fff;
	margin-top:16px;
}
.blue .search .shuru{
	width:300px;
	height:36px;
	float:left;
	padding:0px 0px 0px 0;
	margin:0px;
	border:none;
	font-size: 12px;
	line-height: 36px;
	color: #bcb8b7;
	text-align:left;
	background:none;
	text-indent:10px;
	
}
.blue .search .anniu
{
	float:left;
	margin:0px;
    border: 0;
	width:60px;
	height:36px;
	background:#b1b1b1;
	margin-left:0px;
	color:#333;
	display:block;
	line-height:36px;
	}
	

/* 行业案例 */
.blue .product{ 
 padding-top:20px; clear:both;
}
.blue .product_t01{ width:320px; height:440px; background:url(../images/product_t01.jpg) no-repeat; color:#fff; text-align:center; overflow:hidden;float:left; }
.blue .product_t02{ width:320px; height:440px; background:url(../images/product_t02.jpg) no-repeat; color:#fff; text-align:center; overflow:hidden;float:left; }
.blue .product_t03{ width:320px; height:440px; background:url(../images/product_t03.jpg) no-repeat; color:#fff; text-align:center; overflow:hidden;float:left; }
.blue .product_t04{ width:320px; height:440px; background:url(../images/product_t04.jpg) no-repeat; color:#fff; text-align:center; overflow:hidden;float:left; }
.blue .product_t01 h3, .blue .product_t02 h3, .blue .product_t03 h3, .blue .product_t04 h3{ font-size:22px; font-weight:normal; padding-top:80px;}
.blue .product_t01 h2, .blue .product_t02 h2, .blue .product_t03 h2, .blue .product_t04 h2{ font-size:26px; font-weight:normal; padding-top:70px;}
.blue .product_more{ width:120px; height:40px; line-height:40px; font-size:14px; border:1px solid #fff; margin:0 auto; margin-top:90px;}
.blue .product_more a{ color:#fff;  display:block }
.blue .product_more a:hover{ color:#333; background:#fff; display:block }

.blue .product_c{
	width:880px;
	height:440px;
	overflow:hidden;
	float:left;
}
.blue .product_c li{
	width:280px;
	float:left;
	display:inline;
	line-height: 20px;
	color:#323232;
	overflow:hidden;
  height:210px;
  margin-left:13px;
  margin-bottom:20px;
  
}
.blue .product_c li a {
    width:278px;
	float:left;
	display:inline;
	line-height: 20px;
	color:#323232;
	overflow:hidden;
    height:208px;
    border:1px #ddd solid;
}
.blue .product_c  li a:hover{
	width:276px;
	float:left;
	display:inline;
	line-height: 20px;
	color:#323232;
	overflow:hidden;
  height:206px;
  border:2px #FD6A39 solid;
}
.blue .container {
  text-align: center;
  padding: 10px 20px;
}
.blue .product_c .clearfix{
	float:left;
	}
.blue .product_c li img{
}
.blue .product_c p{ line-height:200%; }
.blue .product_c h2{ font-size:16px; color:#333; margin-top:10px; font-weight:normal}
.blue .product_c span{ font-size:14px; color:#999; margin-top:10px; font-weight:normal}
.blue .product_pic{display:table-cell;vertical-align:middle;width:280px;
	height:210px; background:#fff;}
.blue .product_pic img{ max-width:280px; margin:0 auto; display:block;}
.blue .more{ width:1200px; margin:0 auto; background:#ECECEC; line-height:50px; text-align:center; color:#333}
.blue .more a{ width:1200px; margin:0 auto; background:#ECECEC; line-height:50px; text-align:center; display:block;  color:#333}
.blue .more a:hover{ width:1200px; margin:0 auto; background:#dcdcdc; line-height:50px; text-align:center; display:block;  color:#333}


/*二维码*/
.blue .ewm {width:100%; height:400px;background:url(../images/ewm_bg.jpg) no-repeat center #4273ee;}
.blue .ewm_l{ width:600px; float:left}
.blue .ewm_p{ margin-top:80px; margin-left:10px; color:#fff; text-align:right; width:300px; float:left;}
.blue .ewm_p h1{ font-size:20px; line-height:160%; font-weight:normal;}
.blue .ewm_p h2{ font-size:60px; line-height:120%; font-weight:normal;}
.blue .ewm_p h3{ font-size:35px; line-height:120%; font-weight:normal;}
.blue .ewm_p h4{ font-size:12px; line-height:160%; margin-top:20px; font-weight:normal;}
.blue .ewm_img{ /*background:url(../images/ewm.jpg) no-repeat;*/ width:200px; height:200px; float:left; margin-left:40px; margin-top:100px;}

/*我们的优势*/
.blue .advantage{ width:100%; height:600px; background:url(../images/advantage_bg.jpg) repeat }
.blue .advantage_li{ width:580px; float:left; margin-top:20px;}
.blue .advantage_l{ width:100px; height:100px; 
	background:#4273ee; float:left
}
.blue .advantage_l h1{ line-height:100px; font-size:26px; color:#fff; text-align:center; font-weight:normal; }
.blue .red{ background:#4273ee}
.blue .advantage_r{ float:left; width:480px; height:200px; background:#fff;}
.blue .advantage_p{ margin:20px;}
.blue .advantage_p h2{ color:#4273ee; font-size:20px; }
.blue .advantage_p h3{ color:#333; font-size:16px; font-weight:normal; margin-top:5px;}
.blue .advantage_p ul{ margin-top:10px;}
.blue .advantage_p li{ color:#666; font-size:14px; line-height:240%; background:url(../images/advantage_p.jpg) no-repeat 0 13px; text-indent:16px; }


/*关于我们*/
.blue .about{ width:100%; height:480px; background:#f6f6f6}
.blue .about_c{ margin-top:15px; }
.blue .about_c_l{ width:720px; height:260px; padding:20px; background:#fff; float:left}
.blue .about_c_l h1{ color:#4273ee; font-size:20px;}
.blue .about_c_l p{ font-size:14px; color:#666; line-height:200%; margin-top:10px;}
.blue .about_more{ width:100px; height:36px; line-height:36px; text-align:center; font-size:16px; margin-top:20px; float:right;}
.blue .about_more a{ width:100px; height:36px; border:#4273ee 1px solid; -moz-border-radius:20px; -webkit-border-radius:20px; border-radius:20px; display:block;  color:#4273ee;}
.blue .about_more a:hover{ width:100px; height:36px; border:#4273ee 1px solid; -moz-border-radius:20px; -webkit-border-radius:20px; border-radius:20px; display:block; background:#4273ee;  color:#fff;}
.blue .adout_video{ width:400px; height:300px; background:url(../images/adout_video.jpg) no-repeat; float:right}


/* 新闻中心 */
.blue .news{
	margin:0 auto;
	clear:both;
	overflow:hidden;
	width:1260px;
}
.blue .news_c{
}
.blue .news_c ul{ margin-top:20px;  overflow:hidden; }
.blue .news_c li{
	width:360px;
	margin:0 30px;
	padding:0px;
	font-size:14px;
	color:#666;
	float:left;
	text-justify:distribute; text-align:justify; 
}
.blue .news_pic{display:table-cell;vertical-align:middle;width:360px;
	height:250px; background:#fff;}
.blue .news_pic img{ width:360px; height:250px; margin:0 auto; display:block;}
.blue .news_c li h2 { padding-top:15px; padding-bottom:5px;}
.blue .news_c li h2 a{ font-size:16px; color:#C51717; font-weight:normal;}
.blue .news_c li h2 a:hover{ font-size:16px; color:#C51717; font-weight:normal; border-bottom:1px solid #C51717;}
.blue .news_c li p{ padding-top:0px; line-height:160%;}
.blue .news_c li p a{line-height:160%;}
.blue .news_c li p a:hover{line-height:160%;
	color:#FF6B00;
}

/* 合作伙伴、友情链接 */
.blue .link_c{ width:1248px; margin:0 auto;}
.blue .link_c ul{ margin-left:0px;}
.blue .link_c ul li{ }
.blue .link_c ul li a{ width:160px; height:100px; float:left; margin:0 22px; border:#CCCCCC 1px solid; display:block; margin-top:20px;}

.blue .link_c ul li a img{width:160px; height:100px; }

.blue .index_title, .blue .index_title01{
	width:1200px;
	margin:0px auto;
	border:none;
	line-height:240%;
	font-weight: normal;
	text-align:center;
	overflow:hidden;
}

.blue .index_title h2{ color:#333; height:46px; font-size:26px; font-weight:normal;  background:url(../images/index_title_bg.png) no-repeat center bottom;}
.blue .index_title h3{ color:#ccc; font-size:12px; font-weight:normal; }



/* 新闻列表页 */
.blue .news_c01{
	width:100%;
}
.blue .news_c01 ul{ float:left;}
.blue .news_c01 li{
	width:100%;
	height:60px;
	margin:0px;
	padding:0px;
	border-bottom:#ccc 1px dotted;
	padding-bottom:15px;
	margin-top:30px;
}
.blue .news_c01 .time{
	width:60px;
	height:60px;
	padding:0px;
	float:left;
	margin:0px;
	border:none;
	font-size: 15px;
	line-height:28px;
	color:#fff;
	text-align:center;
	background:#4273ee;
	margin-right:30px;
}
.blue .news_c01 .time span{
	padding-top:8px;
	font-size:26px;
	line-height:25px;
	color:#fff;
	text-align:center;
	display:block;
}
.blue .news_c01 .right{
	width:800px; 
	height:60px;
	float:left;
	margin:0px;
	border:none;
	text-align:left;
	overflow:hidden; 
}
.blue .news_c01 .right p{ font-size:14px; color:#999}



.blue .W70 .title, .blue .big_title{
	width:100%;
	height:44px;
	padding:0px;
	margin:0px auto;
	border:none;
	border-bottom: 2px solid #eee;
	overflow:hidden;
}
.blue .W70 .title h2, .blue .big_title h2{
	height:42px;
	padding:0px 0px 0px 10px;
	float:left;
	margin:0px;
	border:none;
	font-size: 20px;
	line-height: 44px;
	color: #666;
	font-weight: bold;
	text-align:left;
	border-bottom:2px #FF6B00 solid;
}
.blue .W70 .title h1, .blue .big_title h1{
	width:10px;
	height:10px;
	padding:0px;
	float:left;
	margin:17px 5px 0px 5px;
	border:none;
	background:#FF6B00;
}
.blue .W70 .title span,  .blue .big_title span{
	min-width:50px;
	_width:50px;
	height:35px;
	padding:5px 10px 0px 0px;
	float:right;
	margin:0px;
	text-align:right;
}




.blue .products{
	padding:0px;
	margin:0px;
	border:none;
}
.blue .products .content{
	width:100%;
	padding:0px;
	margin:0px auto;
	border:none;
}
.blue .products .content li{
	width:280px;
	height:250px; 
	float:left;
	margin:15px 8px;
	display:inline;
	font-size:16px;
	line-height: 30px;
	color:#333;
	text-align:center;
	overflow:hidden;
	padding-bottom:10px;
}

.blue .products .content li a{
    border: 1px solid #ccc;
		width:276px;
	height:246px; 
	float:left;
	display:inline;
	font-size:16px;
	line-height: 30px;
	color:#333;
	text-align:center;
	overflow:hidden;
	padding-bottom:10px;
}


.blue .products .content li a:hover{
    border: 2px solid #4273ee;
	width:276px;
	height:246px; 
	float:left;
	display:inline;
	font-size:16px;
	line-height: 30px;
	color:#333;
	text-align:center;
	overflow:hidden;
	padding-bottom:10px;
}


.blue .products .content li p{
	height:30px;
	margin:0px;
	font-size:16px;
	line-height: 30px;
	color:#333;
	text-align:center;
	display:block;
	overflow:hidden;
}
.blue .products .content li a{
	font-size:16px;
	line-height:30px;
	color:#333;
	text-align:center;
}

.blue .products_pic{
	/*display:table-cell;*/
	vertical-align:middle;
	width:280px;
	height:200px;
	background:#fff;
	overflow: hidden; 
	margin-bottom: 10px;
}

.blue .products_pic img{ 
/*	width:258px;*/
	height:200px; 
	margin:0 auto; 
	display:block;
	overflow:hidden;
}


.blue .W30{
	width:260px;
	padding:0px;
	float:left;
	background:none;
}
.blue .W70{
	width:900px;
	padding:0px;
	float:right;
	border:none;
}
.blue a {
	color:#555555;
	font-size:13px;
	text-decoration: none;
}
.blue a:hover {
	color:#f60;
}
.blue span a{
	color:#555;
	font-size:13px;
	text-decoration: none;
	}
.blue span a:hover{
	color:#f60;
	font-size:13px;
	text-decoration: none;
	}
.blue .skins .pubdate{
	width:95%;
	height:25px;
	padding:0px;
	margin:5px auto 5px auto;
	border:none;
	font-size: 14px;
	line-height: 25px;
	color: #828282;
	text-align: center;
	display:block;
}
.blue .blocks{
	padding:0px;
	margin:0px;
	border: none;
}
.blue .skins {
	padding:0px;
	margin:0px;
}
.blue .skins .titles {
	width:100%;
	margin:15px 0px 10px 0px;
	padding:0px;
	border:none;
}
.blue .skins .titles h1 {
	width:100%;
	margin:0px;
	padding:0px;
	border:none;
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
}
.blue .skins .titles h3{
	min-width:50px;
	_width:50px;
	height:31px;
	float:right;
}
.blue .skins .titles span {
}
.blue .skins .contents {
	width:95%;
	padding:0px;
	margin:0px auto;
	background: none;
	border:none;
}
.blue #sidebar {
	border: none;
}


/* 底部版权 */
.blue #globalFooter {
	width:100%;
	padding:0px;
	border:none;
	background:#4273ee;
	height:120px; 
	color:#fff;
}
.blue #globalFooter_copyright{
	width:1200px;
	margin:0px auto;
	border:none;
	font-size:14px;
	line-height:50px;
	color:#fff;
	text-align:center;
}

.blue #globalFooter .foot_links{
	width: 1280px;
    height: 60px;
    margin: 0px auto;
    font-family: "SourceHanSansSC-Light";
    font-size: 16px;
    line-height: 60px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}
.blue #globalFooter .foot_links a{
	margin-left: 20px;
    margin-right: 20px;
    font-family: "SourceHanSansSC-Light";
    font-size: 16px;
    line-height: 60px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.blue #globalFooter_copyright a{
	font-size:14px;
	color: #fff;
}
.blue #globalFooter_copyright a:hover{
	font-size:14px;
	color: #fff;
}



.blue #inlcude_contact_p{
	width:100%;
	margin:30px 0px 0px 0px;
	padding:0px;
	border:none;
	height:100px;
	background:#4273ee
	}
.blue #inlcude_contact_p .content{
	min-height:190px;
	_height:190px;
    overflow:visible;
	padding:10px 0px 0px 0px;
	border: none;
	text-align:left;
	background:#fff url(../images/contact_us.gif) no-repeat 10px 10px ;
}
.blue #inlcude_contact_p .content .p, .blue #contact_us .p{
	font-size: 12px;
	line-height: 23px;
	color:#555555;
	text-align: left;
}



.blue #include_product_son_txtli{
	margin:0px;
	padding:0px;
	border:none;
	background: url(../images/index_38-16.jpg) repeat-x bottom;
}
.blue #include_product_son_txtli .content{
	margin:0px;
	padding:6px 0px 15px 0px;
	border: 1px solid #e4e4e4;
	border-top:none;
	overflow:hidden;
}
.blue #include_product_son_txtli .hide, .blue #include_product_son_txtli .hideI{
	display:block;
}
.blue #include_product_son_txtli .content .column{
	width:257px;
	margin:3px auto;
	padding:0px;
	overflow:hidden;
}
.blue #include_product_son_txtli li span{
	width:210px;
	margin:3px auto;
	padding:0px;
	background: url(../images/index2_49.jpg) no-repeat top;
	overflow:hidden;
	display:block;
}
.blue #include_product_son_txtli .content .column a, .blue #include_product_son_txtli li span a{
	padding-left:45px;
	font-size:14px;
	text-align:left;
	color:#31322d;
	line-height:28px;
	font-weight: bold;
}
.blue #include_product_son_txtli .content .column a:hover, .blue #include_product_son_txtli li span a:hover{
	font-size:14px;
	text-align:left;
	color:#f60;
	line-height:30px;
}
.blue #include_product_son_txtli li p a{
	width:200px;
	height:28px;
	margin:0px auto;
	line-height:28px;
	font-weight:300;
	padding:0px 0px 0px 25px;
	font-size:13px;
	color:#31322d;
	text-align:left;
	display:block;
}
.blue #include_product_son_txtli li p a:hover{
	font-size:13px;
	color:#f60;
}
.blue #include_article_son_txtli{
	width:100%;
	margin:0px;
	padding:0px;
	border: none;
}
.blue .small_title{
	height:120px;
	margin:0px auto;
	padding:0px;
	overflow:hidden;
	background:url(../images/small_title.jpg) no-repeat;
}
.blue .small_title h2{
	height:44px;
	margin:0px;
	border:none;
	font-size: 20px;
	line-height: 44px;
	color: #fff;
	font-weight: 400;
	text-align:center;
	margin-top:15px;
}
.blue .small_title p{ text-align:center; color:#fff; margin-top:10px;} 
.blue #include_article_son_txtli .content{
	margin:0px;
	padding:8px 0px 0px 0px;
	border:none;
}
.blue #include_article_son_txtli .content li{
	height:40px;
	margin:4px auto;
	padding:0px;
	border:none;
	overflow:hidden;
	background:#f5f5f5;
}
.blue #include_article_son_txtli .content li a{
	font-size:16px;
	line-height:40px;
	color:#333;
	text-align:center;
	display:block;
	}
.blue #include_article_son_txtli .content li a:hover,.blue #include_article_son_txtli .content li a.one{
	font-size:16px;
	line-height:40px;
	color:#333;
	display:block;
	border:2px #4273ee solid;
	border-top:none
}

.blue .txtli01 a{ background:#d7ddef}

.blue .W70 .news_box{
	margin:0px;
	padding:0px;
	border:none;

}
.blue .W70 .news_box .content{
	margin:0px;
	padding:0px;
	border: none;
}
.blue .W70 .news_box .content ul{
	width:100%;
}



.blue .btn_order {
	padding:10px;
	display:block;
	font-size:16px;
	font-weight:bold;
	letter-spacing: 1em;
	text-align: center;
	text-decoration: none;
	color: #202020;
}
.blue #ArticleContent_body, .blue . imgtxt{
	width:96%;
	margin:10px auto;
	font-size:14px;
	line-height: 25px;
	color: #202020;
	text-align: left;
	text-indent:22px;
	font-weight:normal;
	
	}
#ArticleContent_body{ text-justify:distribute; text-align:justify; }
.blue .crumbNav{
	width:100%;
	height:40px;
    line-height: 28px;
	padding:0px;
	margin:0px auto;
	border:none;
	font-size:16px;
}
.blue .crumbNav a{font-size:16px; line-height: 28px; padding-left:10px;}
.blue .crumbNav a:hover{font-size:16px; line-height: 28px; padding-left:10px;}
.blue .crumbNav h2{ font-size:16px; line-height: 28px;}

.blue .table, .blue .table .bg2, .blue .pages, .blue table td, .blue table th{
	background:none;
	color: #555;
}

.blue .table .wenzi{
	width:120px;
}
/*banner*/
.blue .banner{ height:608px; overflow:hidden; position: relative;}
.blue .banner ul{ position: absolute;
    height: 608px;}
.blue .banner ul li{ height:608px;
    float: left;}
.blue .banner ul li a, .blue .banner ul li image{ display: block}
.blue .foucdocs{ position: absolute; left: 0; bottom:10px; width: 100%; text-align: center;}
.blue .foucdocs span{ display: inline-block; width: 65px; height: 5px; background: #FFF; margin-left: 6px;}
.blue .foucdocs span.focus_on{ background: #aeaeae;}
.blue .foucL,.srollL{ z-index:88; cursor:pointer; position:absolute; left:0; top:50%; height:43px; width:43px; margin-top:-22.5px;background: url(../images/tip_11.png) no-repeat center center;}
.blue .foucR,.srollR{z-index:88;cursor:pointer; position:absolute; right:0; top:50%; height:43px; width:43px; margin-top:-22.5px;background: url(../images/tip_13.png) no-repeat center center;}
.blue .foucL{left:60px !important;}
.blue .foucR{right:60px !important;}

.blue .hui{	background:#eaeaea;	}
		 /*选颜色的盒子*/
#orige span{ background-color:#007CB2 }#orige span:hover{ background-color:#035074 }
.peise_box{ display:none;}

.corlorbox{ overflow:visible!important; cursor:pointer; position:fixed;top:50px; right:0px; z-index:2147483647; background-color:#FFF !important; height:160px; width:0px; border:3px solid #00A0E9 !important;}

.corlorbox a{ 

display:block; height:20px; width:20px; text-indent:-9999px; float:left;

}

.corlorbox .shi_tit{

	cursor:pointer;

	text-align:center;

	color:#FFF;

	font-size:18px;

	font-weight:500;

	 position:absolute; top:50%; margin-top:-59px; left:-27px;

	  height:119px; width:27px; background-color:#00A0E9;

	  background: url(lookpic_03.png) no-repeat left top !important;

	  overflow:hidden;

	  }

.corlorshow{ display:none;}
.corlorbox a.showon{ border:3px solid  #FFF !important; width:14px; height:14px;}
/*可选主色*/

.blue .color{background:#4273ee}


*{  
	margin: 0px;
    padding: 0px;
}




.blue #ArticleContent_body img, .blue #ArticleContent img{ max-width:100%; _width:expression(document.body.clientWidth > 100% ? "100%" : "auto"); vertical-align: middle;}

/*---------右边悬浮QQ------------------------------*/
.blue .side_nav{position: fixed;top: 20%;right: 0;width: 60px; z-index:999}
.blue .side_nav ul li{position: relative;width: 60px;height: 60px;float: right; margin-bottom: 1px;/* border-bottom: 1px solid #fff; */}
.blue .side_nav ul li a{display:inline-block;height: 60px;position: absolute;top: 0;left: 0;}
.blue .current_side_n{width: 140px!important;}
.blue .current_side_n a{width: 140px!important;}
.blue .side_nav ul li span{float: left;color:#fff;line-height: 60px;font-size: 16px;margin-left: 60px;cursor: pointer;}
.blue .side_nav_3 a{width: 60px;}
.blue .side_nav_3 a span{height:128px;position: absolute;right: 60px;bottom: 0px;margin-left: 0!important;display: none;}
.blue .tel a{background: #333333 url(../images/0013920_47.png) no-repeat 15px 15px;}
.blue .QQ a{background: #333333 url(../images/0013920_47.png) no-repeat 15px -96px;}
.blue .sub_QR a{background: #333333 url(../images/0013920_47.png) no-repeat 15px -207px;}
.blue .back_top a{background: #333333 url(../images/0013920_47.png) no-repeat 15px -317px;}

/* ------------------------------------------index end----------------------------------- */


.fl {
    float: left;
}

.fr {
    float: right;
}

/*留言板*/
.blue .guestbook{}
.blue .guestbook .guestbook_r01{ width:520px; height:50px;}
.blue .guestbook .guestbook_r_text01{ width:500px; background:#eee; border:1px dashed #aaa; height:36px; line-height:36px; padding:0 10px;}
.blue .guestbook .guestbook_r02{ width:520px; height:130px;}
.blue .guestbook .guestbook_r_text02{ width:500px; background:#eee; border:1px dashed #aaa; height:84px; line-height:180%; padding:10px;}
.blue .guestbook .guestbook_r03{ width:520px; height:50px;}
.blue .guestbook .guestbook_r_text03{ width:160px; background:#eee; border:1px dashed #aaa; height:36px; line-height:36px; padding:0 10px;}
.blue .submit001{ background:#4273ee; border:none; width:250px; height:40px; line-height:40px; color:#fff;  font-size:16px; margin-top:20px;}
.blue .reset001{ background:#ccc; border:none; width:250px; height:40px; line-height:40px; color:#333;  font-size:16px; margin-left:10px; margin-top:20px; }
















